Hi, I have a RadWindow which appears when the button is clicked.
The code in aspx is:
<telerik:RadWindow ID="rwSubmitForReview" Title="Submit For Review" runat="server" Localization-PinOff="Pin off" Width="305px" Height="250px" InitialBehaviors="Pin" >
Code in aspx.cs is
string script = "function f(){$find(\"" + rwSubmitForReview.ClientID + "\").show(); Sys.Application.remove_load(f);}Sys.Application.add_load(f);";
ScriptManager.RegisterStartupScript(this, this.GetType(), "key", script, true);
When i start to scroll down in the main page, the window disappears and i notice the top attribute follows the scroll? Please refer to the red highlighted line. How can I make it stop scrolling?
The telerik version is 2022.1.119.40.
I'm new in java script code i can't understand in the following code what is 'demo' is it the page or
browser or what
demo.lightBox = $find("<%=RadLightBox1.ClientID %>");
hi sir,
I use the below code in server side to get the control id in child page while radcombox control in master page.
Dim radcmbx As RadComboBox = CType(Page.Master.FindControl("Database_List"), RadComboBox)
So how i get master page control id from separate JavaScript file using javascript or jquery,
The configuration section 'telerik.web.ui' cannot be read because it is missing a section declaration" in Web.config
hi sir,
I need to get the set the value for master page control like this
Dim radcmbx As RadComboBox = CType(Page.Master.FindControl("Database_List"), RadComboBox)
But how we get the value in javascript.
Please give me a solution ASAP
Hello
Please Help me. ã… ã…
I'm still in trouble because I haven't been able to solve this problem.
It is automatically displayed like a StatusBar of RadGridin the RadListBox?
If possible, please teach me how.
Hi,
I have a combobox. Under most circumstances I want it set to the dropdown mode (checkbox=false). In a certain cases I would like the combobox to have its checkbox property set to true. This being the case switching between the dropdown mode and the checkbox mode would have to be done in the code behind (or perhaps javascript which is not one of my talents). I tried this code
stringcurrControl = fld.ControlName;
RadComboBoxcmb = (RadComboBox)FindControl(currControl);
cmb.Enabled = true;
if(rule == 3 && fld.Field.Replace("\r\n","") == "PROBLEM_TYPE")
{
cmb.CheckBoxes==true;
}
The last line: cmb.CheckBoxes==true; throws an error during compilation:
"only assignment call increment decrement and new object can be used as a statement"
Is it that the combobox can be set to checkbox=true in the declaration of the combobox. How can this be done? Any help would be appreciated.
Thanks,
Neil
GridBoundColumn bfield = new GridBoundColumn();
bfield.DataField = "Col1";
bfield.HeaderText = "Col1";
bfield.HeaderStyle.Width = 70;
bfield.HtmlEncode = false;
grdEngagements.MasterTableView.Columns.Add(bfield);
I'm giving the coloum width only for other coloumns than the first coloumn (not given any coloumn width for first coloumn) and I'm not doing anything in MasterTableView.TableView in code or design.
Below is the attached pic where I'm getting coloumn reallignment issue, I have found the same issue mensioned in some telerik blogs but none of those solutions fixed my issue,
Please help me to resolve it as sooon as possible, Thanks in advance,
Anoop
Hi,
I'm trying to set the filter from code behind. When the code below runs to get the GridFilteringItem, I'm getting an "Index was out of bounds" exception. Any ideas what's causing this?
protected void RadGrid1_PreRender(object sender, EventArgs e)
JC