I have a RadGrid which has 7 columns. I am using InLine editing for my Edit Mode. What I am looking for is a concise way to check to see if anything changed on the Update Command, without having to look at each cell / column for the row that is being edited. Is there a way I can check to see if anything on this row was changed and then if so i can loop through each column and check, but if not I will not do anything? I am looking for something on the server side not client side.
thanks
doug
Let me first start off by saying that this problem is in Firefox only.
I'm trying to use the ImageEditor in a simulated "popup" with an iframe inside of it. See the attached example-usage.jpg for a sample of how I intend to use it.
The typeError specifically occurs when LiteView.js from the ImageEditor resources. See the attached console-log.jpg for the screen capture of the console log indicating the error.
I know that Firefox has issues with getComputedStyle if the iframe is hidden with display:none - mine is not. I know that there are several other quirks with getComputedStyle in Firefox specifically.
If I move the editor out of the "popup" and into a regular page it functions fine.
Is there anyway to force a width with CSS or javascript so that getComputedStyle will return a value. Can I override a javascript function on this page to prevent the typeError? Do you guys know what LiteView.js is trying to do?
Any solutions appreciated.
Hi,
Using this ajaxify exampleI need execute code in codebehind, and then update the master page control
Something like this:
Content Page
protected
void
Page_Load(
object
sender, EventArgs e)
{
RadAjaxManager AjaxManager = RadAjaxManager.GetCurrent(Page);
RadMenu RadMenu1 = (RadMenu)
this
.Master.FindControl(
"RadMenu1"
);
AjaxManager.AjaxSettings.AddAjaxSetting(btnSaveChanges, RadMenu1);
}
protected
void
btnIncrease_Click(
object
sender, EventArgs e)
{
...
context.SaveChanges();
// And then, Update Radmenu in MasterPage
}
In my scenario, RadMenu have a CSS indicador of numbers of items in database updated in Page_Load(). But, when I click in btnSaveChanges in Content Page, always RadMenu update before database is changed.
Any way to reverse this?
Thank you!
<telerik:AjaxSetting AjaxControlID="Button1" > |
<UpdatedControls > |
<telerik:AjaxUpdatedControl ControlID="container" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
<telerik:AjaxSetting AjaxControlID="Button2" > |
<UpdatedControls > |
<telerik:AjaxUpdatedControl ControlID="container"/> |
</UpdatedControls> |
</telerik:AjaxSetting> |
<telerik:AjaxSetting AjaxControlID="Button1,Button2" > |
<UpdatedControls > |
<telerik:AjaxUpdatedControl ControlID="container" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
OVERFLOW: auto; WIDTH: 100%; HEIGHT: 10px |
I am using a dropdownlist on a mobile browser, the page moves when i try to scroll through the items.
I can't use my finger to scroll. It's a long page.
<telerik:RadDropDownList ID="ddlState" runat="server" DropDownHeight="300" Width="260px" Skin="Silk" RenderMode="Lightweight">
</telerik:RadDropDownList>