Telerik Forums
UI for ASP.NET AJAX Forum
17 answers
157 views
Hello

I want to use telerik radcalender to show the one row and four columns to show
four days at time insted of full month to give nice information of days to client, 
so his functionality to adjust the exception of that day will improve and fast.


so please give me suggestion ,solution or any helpful example.

thanks and regard
Amit
Princy
Top achievements
Rank 2
 answered on 28 Dec 2012
1 answer
121 views
Hi

I am adding hyperlink in column of mastertable based on certain condition inside itemdatabound event. Same grid has detail table, when I am trying to get detail table data - data is coming properly and getting bind as expected but only hyperlink in master table is disappearing. Please guide me how to retain hyperlink while loading detail table. I m developing in Vb.net.

thanks,
Pradip
Shinu
Top achievements
Rank 2
 answered on 28 Dec 2012
3 answers
71 views
hi,
I would like that even after selecting an item, when I click on radcombobox I appeared throughout the item list also .. but after setting the filter property in StartsWith, every time I load I want to change the selected item, I must first delete the selected item so that I can look through the list .... There is a procedure that ancestral delete the selected item but also to view the entire list of items loaded into radcombo?

my code is:
<telerik:RadComboBox ID="Regione" Runat="server" CollapseDelay="100"
EnableLoadOnDemand="True" HighlightTemplatedItems="True" IsCaseSensitive="True"
LoadingMessage="Loading..." DropDownWidth="160px" Filter="StartsWith" Width="160px"
MaxHeight="175px" ShowMoreResultsBox="True" Height="175px" OnClientItemsRequesting="OnClientItemsRequesting"
AutoPostBack="True" OnSelectedIndexChanged="Regione_SelectedIndexChanged" OnClientItemsRequested="OnClientItemsRequested"
EmptyMessage="Select region" Skin="Sunset">
</telerik:RadComboBox>
Dimitar Terziev
Telerik team
 answered on 28 Dec 2012
1 answer
149 views
Hi guys, Refer to the http://demos.telerik.com/aspnet-ajax/grid/examples/groupby/grouploadmodeclient/defaultvb.aspx?#qsf-demo-source,
it allow column to drag and drop to group and ungroup. In my case, I do not want drag and drop, I want to group the country and city column at the page load. How do I achieved that. Please help. thanks
Princy
Top achievements
Rank 2
 answered on 28 Dec 2012
12 answers
765 views
hi

i use the following Method for retreiving the fields from the edit form (Which is Auto Generated)

 

void RadGrid1_UpdateCommand(object source, GridCommandEventArgs e)  
{  
GridEditFormItem Data = (GridEditFormItem)e.Item;  
Hashtable ht = new Hashtable();  
Data.ExtractValues(ht);  

the problem i am having is that i have several readonly/hidden fields in the grid , but this method does not return those fields , only the ones visible to the user ,

currently there are 5 fields on the screen that the user can edit , and about 3-4 that are non editable , but i need the values from them to be able to do the update on the database.

the above method will only return the visible items.

what method can be used to get the edited items as well as the readonly items from the row etc.

many thanks

Peter.

Vasil
Telerik team
 answered on 28 Dec 2012
9 answers
132 views
Hi 

Creating a new thread for my problem as the earlier thread might have been closed. Please review me and let me know if you come up with any suitable solution for me.
http://www.telerik.com/community/forums/aspnet-ajax/menu/context-menu-on-mobile-devices.aspx#2305882 

Thanks
Ivan Zhekov
Telerik team
 answered on 28 Dec 2012
1 answer
124 views
Hi,
How do we load some specific PDF/doc files from server into FileExplorer and user can download into their machine?

and i could not load files from shared folder on  the server.
my server path is "\\srvname\Z_Drive\docs"
           
string[] paths = new string[] {@"\\srvname\Z_Drive\docs" };   
 RadFileExplorer1.Configuration.ViewPaths = paths;


but nothing show up on the FileExplorer 

here is what i am trying to implement using FileExplorer .
i want to show some list of PDF/DOC/XLS files from server into FileExplorer and user able to download all the files or some of the files into their local machine(no upload, no delete, no view nothing).  Just download the files from the server.

how could achieve this one? (if not possible using FileExplorer please suggest me some other telerik control)

thanks
Vessy
Telerik team
 answered on 28 Dec 2012
8 answers
137 views

We have developed the application on Windows 7 and it comes by default with IE 8. We tested the application first time on IE 7 and all the look and feel changed completely.

 The grid is not being displayed properly, it's all distorted

Please advise asap

erwin
Top achievements
Rank 1
Veteran
Iron
 answered on 28 Dec 2012
5 answers
84 views
Hi
I add a RadSiteMap to page and set it's 'dir' attribute to 'rtl'. it cause 'RadSiteMap_rtl' class gets added to the rendered html.
But it seem that 'Telerik.Web.UI.WebResource.axd?...' do not return any _rtl css classes for RadSiteMap and
.RadSiteMap .rsmColumn {
    floatleft;
} affect all 'ul' tags to float left.It can get fixed by a simple css class ,But I just want you to know and if I'm right make your wonderful package better. Thank you
Ivan Zhekov
Telerik team
 answered on 28 Dec 2012
1 answer
144 views

I have the AutoCompletBox working on a form, but I want to make sure that I'm doing this right and that there isn't a more efficient way to use this control.

It appears that we have to have this code block below in the postback section of the webpage in order for the AutoCompleteBox to work properly.  We are setting the DataSource to a datatable.  This datatable will end up having over 10,000 rows.  Since this has to be in the postback section to work, everytime the form does a post back it has to retrieve all of those rows whether the user is typing in the AutoCompleteBox or not.  And it will retrieve all 10,000 rows and then filter them down with every 3 second pause in the typing of the AutoCompleteBox.

I assume that there is a better way to do this.  I suppose that we could use a webservice, but doesn't it still require all 10,000 rows to be pulled in each time even after the user has typed a few letters?  Am I correct that this tool always wants the full list and then it filters the rows down afterward?  Does it require this list of rows to be retrieved with each postback?

Code block in postback:

ACInSite.DataSource = SQLRowToDt(ConnStr, "Select siteName, siteID From site")
                    ACInSite.DataTextField = "siteName"
                    ACInSite.DataValueField = "siteID"
                    ACInSite.DataBind()


Princy
Top achievements
Rank 2
 answered on 28 Dec 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?