Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
71 views
Hi All,
 I am very new into this RAD calendar control.
 we have bought RAD controls recently. I have started to implement the RAD Calendar control in to our developing application. So i have copied the Calender style and its scripts into our developing application. I also modified the calender style But the problem is the changed styles are not reflected. When i using firebug some default style is showing. I dont know where the styles are comming from. It automatically bring some styles from some default location.

current developement is "Present.png"
Requested design proto is "requestedproto.png"

So please solve my problem.

Thank you in advance
Princy
Top achievements
Rank 2
 answered on 07 Dec 2010
1 answer
50 views
Is there a way I can have an external button (not in side the grid\command template) to tell the grid to show the insert template, and then the automatic operations can handle it from there?
Princy
Top achievements
Rank 2
 answered on 07 Dec 2010
2 answers
84 views
Is there a way to set client side focus on a child tab when the parent tab is selected (something like having the parent tab have a property to set the focus on one of its child tabs)?

If so, do I need to find & manually enable the child tab or will it be auotmatically done as explained above?

Once there, I want to set focus on the first field on the child tab.
Bill
Top achievements
Rank 2
 answered on 07 Dec 2010
4 answers
117 views
I have an asp.net program where a user can fill out a few text boxes, select a file to upload, and then click Submit. 

Upon clicking Submit the progress bar appears, the file is uploaded, and some info is inserted into a database.

After that process completes the user is shown a confirmation page with some buttons to go back and submit another sale or exit the program.

When clicking the button to submit another sale the progress bar will briefly pop up again.  It shows 0 Total files and the progress bar is about half way across.

This doesn't always happen, but sometimes will.  I don't understand what's causing the progress area to display itself again.  No files are selected, we're not clicking refresh or anything, just a normal button click causing a postback event.  Neither the button click event, nor the page load event has any code that references the file upload control in any way. 

I have attached a picture of the error as it's happening.  Please let me know what other information you need to diagnose why this is happening.

/<evin
Kevin
Top achievements
Rank 1
 answered on 06 Dec 2010
6 answers
265 views
I have checkbox column in Radgrid. When I filter the Radcombox to "Yes" it gives following error
"Error: Sys.WebForms.PageRequestManagerServerErrorException: Operator '=' incompatible with operand types 'Boolean' and 'Int32' "

My Code
<telerik:GridCheckBoxColumn DataField="Active" HeaderText="Is Active" SortExpression="Active"
  
UniqueName="Active" AutoPostBackOnFilter="true" 
  
CurrentFilterFunction="EqualTo" ShowFilterIcon="false">
  
<FilterTemplate>
  
<telerik:RadComboBox ID="ImportedFilter" runat="server" OnClientSelectedIndexChanged="ImportedFilterSelectedIndexChanged"
  
SelectedValue='<%# ((GridItem)Container).OwnerTableView.GetColumn("Active").CurrentFilterValue %>'
  
Width="70px">
  
<Items>
  
<telerik:RadComboBoxItem Text="NoFilter" Value="" />
  
<telerik:RadComboBoxItem Text="Yes" Value="1" />
  
<telerik:RadComboBoxItem Text="No" Value="0" />
  
</Items>
  
</telerik:RadComboBox>
  
<telerik:RadScriptBlock ID="RadScriptBlock12" runat="server">
  
<script type="text/javascript">
  
function ImportedFilterSelectedIndexChanged(sender, args) {
  
var tableView = $find("<%# ((GridItem)Container).OwnerTableView.ClientID %>");
  
var filterVal = args.get_item().get_value();
  
if (filterVal == "") {
  
tableView.filter("Active", filterVal, "NoFilter");
  
}
  
else if (filterVal == "1") {
  
tableView.filter("Active", "1", "EqualTo");
  
}
  
else if (filterVal == "0") {
  
tableView.filter("Active", "0", "IsNull");
  
}
  
  
</script>
  
</telerik:RadScriptBlock>
  
</FilterTemplate>
  
</telerik:GridCheckBoxColumn>
Jessy Joseph
Top achievements
Rank 1
 answered on 06 Dec 2010
5 answers
294 views
I have a checkbox column in my radgrid. Is it possible to have filter value as checked when it's loaded. I have shown in the attached  image.

Thanks.
Jessy Joseph
Top achievements
Rank 1
 answered on 06 Dec 2010
4 answers
165 views

Hello,
When using a RadComboBox with AllowCustomText 'true' the combobox exhibits some _very_ annoying behaviour. Every time you click into the control it automatically selects the entire contents, and it is then very difficult to unselect.

This makes is very hard to do many things, including:
 
a) adding multiple items simply - aka by repeatedly selecting items from the completion list and having them appended to the combobox text
b) add a custom entry manually
c) edit an entry
d) manually insert an entry between existing entries
e) select an entry from the completion list to be inserted between existing entries
f) etc

Does anybody know a solution to this problem? How do I stop the auto-selection of content every time this control is selected?

 

Mattias
Top achievements
Rank 1
 answered on 06 Dec 2010
1 answer
61 views

Hi,

Last week you helped me with the RadEditor in RadWindow example code. Now, to open the RadWindow the following javascript is used:

$find("<%=DialogWindow.ClientID%>").show();

When I normally open a RadWindow use the openRadWindow command. With this command I can pass a query string:

openRadWindow("Dialog.aspx?iid=" + iid, "DialogWindow);

My question is how can I add a query string to the .show() method of displaying the window? The reason for the question is that with the openRadWindow the content of the parent editor is not passed to the child editor.

Thanks,

Steve Holdorf

Note: the reason I need to pass the querystring on displaying the radwindow is because the application's patient ID is maintained in the applications querystring passed to every page and window. 

OK Last note: I might be wrong about the showing of the radwindow blowing out the parent page's query string. All I know is that when we try to retrieve it session object using the querystring the session object is not found.

Thanks again!

Steve Holdorf
Top achievements
Rank 1
 answered on 06 Dec 2010
4 answers
297 views
Hello,

I have a radgrid with a itemcommand who check the selected value. It was working until I move the page inside a content page. Now, the selected value is always nothing. Is there something I must do for it to work in a content page.

Thanks !

Keven
Keven
Top achievements
Rank 1
 answered on 06 Dec 2010
1 answer
75 views
Hi, I'm tryinng to use the scheduler to set appointments. but, I need that serveral people with different login id's create appointments, but one can only modify his/her own appointments. the other appointment should look with a different color, indicating that it is already taken by somebody else.

How can I achieve this?

thanks,
Julio
Veronica
Telerik team
 answered on 06 Dec 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?