Hi folks,
i'm using a RadGrid with a custom CSS. When additionally using a RadAjaxManager, the assigned CSS is ignored and the Default is used.
I tried it like described here
http://www.telerik.com/help/aspnet-ajax/ajax-layout-problem-updated-controls-on-new-line.html
but no success so far.
So summarized i got this.
I have a global CSS style to add a border to all input type=submit:
Because i dont want to have this border for the paging buttons in a RadGrid i'm using:
As said before this works fine with no RadAjaxManager. But with RadAjaxManager the borders appear.
Currently i'm using the RadAjaxManager like this:
I even tried to assign a other custom class with some radical colors for testing purposes, but nothing changes.
How can i get this working?
What am i missing?
Thanks,
Markus
i'm using a RadGrid with a custom CSS. When additionally using a RadAjaxManager, the assigned CSS is ignored and the Default is used.
I tried it like described here
http://www.telerik.com/help/aspnet-ajax/ajax-layout-problem-updated-controls-on-new-line.html
but no success so far.
So summarized i got this.
I have a global CSS style to add a border to all input type=submit:
1.body input[type=submit] {2. background-color: #bdb69e;3. border: 1px solid #bdb69e;4. min-width: 200px;5. min-height: 35px;6. box-shadow: 0 0 0 1px rgba(254,254,254,0.5), 0 0 0 2px #bdb69e;7. }Because i dont want to have this border for the paging buttons in a RadGrid i'm using:
1..RadGrid input[type=submit] {2. border: none !important;3. box-shadow: none !important;4. width: 25px !important;5. min-width: 25px !important;6.}As said before this works fine with no RadAjaxManager. But with RadAjaxManager the borders appear.
Currently i'm using the RadAjaxManager like this:
01.<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" UpdatePanelsRenderMode="Inline">02. <AjaxSettings>03. <telerik:AjaxSetting AjaxControlID="btn_Search">04. <UpdatedControls>05. <telerik:AjaxUpdatedControl ControlID="rg_Translation" UpdatePanelCssClass="ForcedRadGridStyle" UpdatePanelRenderMode="Inline" />06. </UpdatedControls>07. </telerik:AjaxSetting>08. </AjaxSettings>09.</telerik:RadAjaxManager>I even tried to assign a other custom class with some radical colors for testing purposes, but nothing changes.
1..ForcedRadGridStyle {2. color: rgb(182, 255, 0) !important;3. background-color: rgb(182, 255, 0) !important;4.}How can i get this working?
What am i missing?
Thanks,
Markus