asp.net - ColorPickerExtender - Managing padding problems -
i have problems ajaxcontroltoolkit's colorpickerextender while using latest version of asp.net. (after doing little digging in development tools on chrome, found out it's padding.)
whenever try use colorpicker, shows this: 8px padding want this: 0px padding
i think bootstrap css automatically being applied padding of colorpicker table, automatically generated.
my question is, how make sure keeps 0px padding?
here's use in aspx file.
<edititemtemplate> <tr style=""> <td> <asp:button id="updatebutton" runat="server" commandname="update" text="update" /> <asp:button id="cancelbutton" runat="server" commandname="cancel" text="cancel" /> </td> <td> <asp:textbox id="nametextbox" runat="server" text='<%# bind("name") %>' /> </td> <td> <asp:textbox id="colortextboxedit" runat="server" text='<%# bind("color") %>' maxlength="6" columns="6" /> <asp:imagebutton id="imagebutton_colorpicker" runat="server" imageurl="../images/icon_colorpicker.png" /> <ajaxtoolkit:colorpickerextender id="colorpickerextender1" runat="server" targetcontrolid="colortextboxedit" samplecontrolid="imagebutton_colorpicker" popupbuttonid="imagebutton_colorpicker" /> </td> </tr> </edititemtemplate>
if know id of colorpicker, can set css rules specific control, , rules override default colorpicker rules.
Comments
Post a Comment