Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
175 views
When I place my mouse cursor on the Radschedulers DatePicker, I see 2 tool tips one showing the wrong date. I do not know from where it is setting the value. I am sending you the snapshot of the DatePicker showing the wrong date and also the markup of radscheduler and tooltip manager. If I set the AutoTooltipify field of RadToolTipManager to "false" it disables the tooltip for all the controls in RadScheduler, I don't want to do that Also note that, I want only the default tooltip(the one with yellow background) to be displayed for DatePicker. Please let me know how can I resolve the issue.

 <telerik:RadToolTipManager ID="RadToolTipManager1" runat="server" Animation="Fade"
                                AutoTooltipify="True" HideEvent="LeaveToolTip" OnClientBeforeShow="clientBeforeShow">
 </telerik:RadToolTipManager>






AratiS
Top achievements
Rank 1
 answered on 18 Jul 2012
2 answers
164 views
Hello, standard site navigation can display nodes based on their authority to the navigate url page. Does SiteMap have the same functionality?

this functionality is generally handled by a setting in the web.config file.

Please let me know.
Thanks
Danny
Top achievements
Rank 2
 answered on 18 Jul 2012
1 answer
293 views
I am using RadGrid on my page with AJAX functionality. After performing AJAX callback, it stops working and using almost every functionality returns error (4.jpg, from Firebug):

$find("ctl00_placeholderBody_ctl04_ListControl_RadGrid_ctl00") is null

When I looked at DOM, I noticed RadGrid object has weird name ("null", 3.jpg).

How is this possible? This is part of my view:

<telerik:RadAjaxManager ID="RadAjaxManager" runat="server">
  <AjaxSettings>
    <telerik:AjaxSetting AjaxControlID="RadGrid">
      <UpdatedControls>
        <telerik:AjaxUpdatedControl ControlID="RadGrid" LoadingPanelID="RadAjaxLoadingPanel" />
      </UpdatedControls>
    </telerik:AjaxSetting>
  </AjaxSettings>
</telerik:RadAjaxManager>
<telerik:RadAjaxLoadingPanel Runat="server" Skin="Default" ID="RadAjaxLoadingPanel">
</telerik:RadAjaxLoadingPanel>
<telerik:RadGrid ID="RadGrid" runat="server" AutoGenerateColumns="False" AllowPaging="True"
    AllowSorting="True" PageSize="10" AllowFilteringByColumn="true" AllowCustomPaging="True" ClientIDMode="AutoID">
    <mastertableview ClientIDMode="AutoID">
    </mastertableview>
</telerik:RadGrid>



Eyup
Telerik team
 answered on 18 Jul 2012
1 answer
107 views
Hi all,

How to resize binary image with out loosing the original clarity...
Please help.

Regards,

Prassin
Eyup
Telerik team
 answered on 18 Jul 2012
1 answer
148 views
Hi,

I am using telerik grid with header context filter menu implemented as attached in image 'Filter_Enter-Key__Issue.JPG'. Currently filter is not working on pressing 'Enter key' in input textbox. Filter only works if we press 'Filter' button.
Could you please suggest any solution to work filter on 'Enter' key press? Or is there any way to disable 'Enter' key press event for filtering?
Note:- This issue exists in all browsers(IE, FF, chrome)

Thanks and Regards,
Deepti
O.D.
Top achievements
Rank 1
 answered on 18 Jul 2012
1 answer
143 views
Hello
I have a progress monitoring screen with a radGrid that lists processes.
One of the grid columns contains a progressArea that shows process progress (from 0 to 100%) (see attachment)
To refresh the page I use the following

Page.ClientScript.RegisterStartupScript(

Me.GetType(), "refresh", "window.setTimeout('window.location.reload(true)',10000);", True)


This causes the entire page to reload every 10 seconds, which is annoying,  I want just the progressareas to refresh, but cannot find how.
Thanks for any help

Kostadin
Telerik team
 answered on 18 Jul 2012
9 answers
228 views
I have come at this from several directions, but here is what I seem to be down to:

I am using a custom content provider.

I have a gridcontextmenu item that opens a radwindow for editing of file properties. I can open this window, make changes, save them, close the window and everything works fine. 

function gridContextMenuClicked(toolbar, args) {
    var buttonValue = args.get_item().get_value();
        if (buttonValue == "properties_Menu") {
 
        var explorer = $find("<%= RootFileExplorer.ClientID %>");
        var selectedItem = explorer.get_selectedItem();
        if (selectedItem) {
            var itemPath = selectedItem.get_path();
 
            ShowPropertiesDialog(itemPath);
        }
    }
}

One thing that I do is to refresh the explorer OnWindowClose.

function OnWindowClose(sender, args) {
    RefreshExplorer();
 
}
 
function RefreshExplorer() {
    var explorer = $find("<%= RootFileExplorer.ClientID %>");
    explorer.refresh();
}

This has no problems.

To attach the click handler I use some code I found in the KB (I believe).

function OnClientLoad(explorer, args) {
    attachHandlers(explorer);
    explorer.add_ajaxRequestEnd(function () { attachHandlers(explorer); });
}
 
 
function attachHandlers(explorer) {
             
    var gridContextMenu = explorer.get_gridContextMenu();
    gridContextMenu.add_itemClicked(gridContextMenuClicked);
 
    var tree = explorer.get_tree();
    tree.add_contextMenuItemClicked(treeContextMenuClicked);
 
}

This code also functions. 

Here is where the problem occurs. I have also created several "filters" outside of the FileExplorer. They are simple controls, such as a DropDownList and a TextBox used to filter the results of my content provider. To force refresh of the FileExplorer I am clearing the nodes on Page_Load. I tried to find a solution for days, and this is the only way I was able to get both the grid and the tree to refresh.

RootFileExplorer.TreeView.Nodes.Clear();

The result of this seems to be that when the attachHandlers javascript method is called, explorer.get_gridContextMenu() returns null. This obviously throws an error and the whole thing fails. If I don't have it do the attachHandlers() the context menu in my grid no longer works.

I brought up this problem in another thread. The responder (who I just saw as I looked for the thread -- I did not receive an email even though I am subscribed) mentions sending my code. It would not be possible to get a distributable, packaged version of the content provider and other code in any sort of timely manner. Hopefully the details I have provided above will be enough to shed some light.
Rohan
Top achievements
Rank 1
 answered on 18 Jul 2012
1 answer
88 views
(title is no longer related sorry about that)

I think I'm going crazy...

here's my combobox

 <telerik:RadComboBox ID="myCombo" AutoPostBack="true"  Width="337" runat="server"></telerik:RadComboBox>

In code behind, on indexchanges, I want to populate another combobox... the issue is it keeps the value of the first item regardless the changing index... when the postback is over "myCombo" has the first item selected and not the one I choose?!?

What's wrong????????
Ivan Zhekov
Telerik team
 answered on 18 Jul 2012
1 answer
179 views
Hi 


I have already developed a windows application. Now i am going to convert the windows application to web application.. I want to use the same theme used in windows application in my web application also. Is there any easy way to convert the themes from windows to web.


Will Telerik provides various themes for whole application? I need apple theme to be applied in my application.. Please provide me the apple theme css Files...



Thanks 
O.D.
Top achievements
Rank 1
 answered on 18 Jul 2012
1 answer
65 views
Hi,
     I have a linkbutton in the commanditemtemplate of my radgrid. I want to select all the items in my radgrid on clicking the linkbutton in clientside. Please guide me.
thanks in advance
savyo
Jayesh Goyani
Top achievements
Rank 2
 answered on 18 Jul 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?