Hello,
in my aspx page I have 3 combobox.
The First, the only one enabled, shows States. When the user select one state, the other 2 combo read the database and select cities and clients from that state.
At the moment I reload the page when the search take place.
Is It possible to avoid the page reloading?
Luigi
Hello,
in my RadGrid I have to show tooltip for every Cell, but every time I have to make a database access to retrieve fields to compose the tooltip, but a database access for every mouse movement is too heavy.
What is the best way to achieve this?
Thank you
Luis
Hello,
I need a JavaScript function that disable one control on my aspx page
where the user select a particular item in a RadButtonList.
I need to make it client-side, not server-side, for performance reasons.
How can I write it? (I don't know JavaScript).
Thanks in advance.
Luis
First off, I apologize for posting a new question on this issue, but I'm still not clear how to do this after having looked at the various samples and documentation.
I have a from with a link in the parent page. When the link is clicked, it calls a radwindow:
function openRadWindow(fileNameAndIP, windowName, width, height) {
var oWnd = radopen(fileNameAndIP, windowName);
oWnd.set_visibleStatusbar(false);
oWnd.set_behaviors(Telerik.Web.UI.WindowBehaviors.Close + Telerik.Web.UI.WindowBehaviors.Move);
oWnd.set_destroyOnClose(true);
oWnd.set_width(width);
oWnd.set_height(height);
oWnd.set_modal(true);
oWnd.set_overlay(false);
oWnd.set_iconUrl("../Icons/favicon-16x16.png");
oWnd.center();
};
I call it this way from either a linkbutton or a link in a Radgrid:
OnClientClick="openRadWindow('../IP/dlgIPDetail.aspx?IP=" + host.Ipv4 + "','wIPLookup','1000','510');return false;"
I have this windowManager in the parent page:
<
telerik:RadWindowManager
ID
=
"rwManager"
runat
=
"server"
>
<
Windows
>
<
telerik:RadWindow
ID
=
"wIPLookup"
runat
=
"server"
Overlay
=
"true"
/>
</
Windows
>
</
telerik:RadWindowManager
>
From the initial window, I want to call a larger window and pass a value similar to the way I call the initial window that needs to be on top of the original window. The examples and docs that I have looked at have some JS snippets that don't fully explain (at least that I can understand) the entire relationship between the windows. I need to know where to add the JS for calling the second window, and where (or whether) to create additional windows entries in the RadWindowManager/s ( on the parent page, or in a RadWindowManager on the first window that calls the second window?)
Hi,
I am noticing on our server that there are tens of thousands of files named along the lines of
Firstly, can you tell me what these files are for?
Secondly, if this is expected and they are temporary files, how can I set it to use a different directory (ie the actual windows temp directory)
Thanks.
Hi
I have a problem with Code changing collapse/Expand in the radGantt.
The following code has been used and works great For the first part.
<style type="text/css">
.radIcon.radIconCollapse:before {
content: "\e121";
}
</style>
The problem in the second part was the use of the following code and was not changed.
First the following code was used and did not work.
<style type="text/css">
.k-rtl .radIconExpand:before {
content: "\e11e";
}
</style>
Secondly, the following code was used and did not work
<style type="text/css">
.radIcon.radIconExpand:before {
content: "\e11e";
}
</style>
I have a problem with Code changing collapse/Expand in the radGantt.
The following code has been used and works great For the first part.
<style type="text/css">
.radIcon.radIconCollapse:before {
content: "\e121";
}
</style>
The problem in the second part was the use of the following code and was not changed
First the following code was used and did not work.
<style type="text/css">
.radIcon.radIconExpand:before {
content: "\e11e";
}
</style>
Secondly, the following code was used and did not work.
<style type="text/css">
.k-rtl .radIconExpand:before {
content: "\e11e";
}
</style>
I have a grid on a webpage with scroll. When I run this on a mobile device and try to group by dragging the column header the position of the header when dragging begins is way off.<See attached picture>
My test project where that happens is a copy of the demo you provide with the AJAX control suite. You will find the project attached.
I noticed that this problem is not there on the official Telerik demo website - DEMO. I am modifying that page so that scroll appears
<div style="height: 300px"></div>
and header position when dragging is still correct.
So what am I doing wrong in my project?