Telerik Forums
UI for ASP.NET AJAX Forum
11 answers
245 views
I have a radgrid on my page and I have it set up so that I allow multiple selections via a checkbox.

I want to be able to get the selected rows checked and update their field(status) to a certain value.

I want to use a command button for this. the user will select the records and click the button which will update "status" to "confirmed".

Is this possible to be done through a stored procedure? If not, just through vb.net

Thanks

Andrew
Top achievements
Rank 1
 answered on 06 Jul 2011
2 answers
67 views
You mentioned that this problem will be fixed in next release.
What is the status of it?



Related to: http://www.telerik.com/community/forums/aspnet/general-discussions/radcolorpicker-doesn-t-display-palette-tabs.aspx
Roman
Top achievements
Rank 1
 answered on 06 Jul 2011
1 answer
68 views
Hi eveybody,
I'm tring to create schedule page. And I used this sample http://demos.telerik.com/aspnet-ajax/scheduler/examples/outlook2007/defaultcs.aspx . And my page has a menu which it can close and open. So I want to refresh my schedule/splitter size when i close or open my menu. Actually It works when I change main explorer window size. But I couldn't find which method is calling from schedule or splitter. So How Can I handle it?

Thanks
Gökhan
Plamen
Telerik team
 answered on 06 Jul 2011
1 answer
61 views
Hi ,
  In my add form template , I m using Resource type to display the combo box in form template , in combo box i have to use Text with Icons  or Color then Name in Text Field, i want be same like Outlook Category and i m using Default Template in Scheduler .. Can you suggest me how to do this Concept.. Is it possible to assign category of appointment via the drop down menu in the Add appointment dialog?

I need Same Function  From this link http://www.telerik.com/help/wpf/radscheduler-features-categories.html but its should in WPF. I need in ASP.NET Ajax
Plamen
Telerik team
 answered on 06 Jul 2011
0 answers
71 views
How to bind multiple record in one label box ,



Thanks,
Mohamed.
mohamed
Top achievements
Rank 1
 asked on 06 Jul 2011
2 answers
89 views
Hi,
I have a grid that among the columns has 2 template columns that have editors present.  One of them selects whether or not the row is relevant and the other allows the entry of some text.  

This all works fine on the client but once the form comes back to the server I only see the original values that the controls in the 2 columns were set to - not any changed values.

The columns are as below (they get setup with the correct values via the ItemDataBound event):

<telerik:GridTemplateColumn DataField="Selected" HeaderText="Use?" UniqueName="uxSelected">
   <ItemTemplate>
      <asp:CheckBox ID="uxSelectedCheckbox" runat="server" Enabled="true" />
   </ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridTemplateColumn DataField="SackColourRcGcBc" HeaderText="Custom Colour" UniqueName="uxSackColourRcGcBc">
   <ItemTemplate>
      <telerik:RadTextBox ID="uxSackColourRcGcBcTextbox" runat="server" Width="80px" AutoPostBack="False"/>
   </ItemTemplate>
</telerik:GridTemplateColumn>


The code behind is as below:

Dim idString As String = ""
Dim colourString As String = ""
Try
    For Each item As GridDataItem In DirectCast(uxFormView.FindControl("uxRadGrid"), RadGrid).Items
        Dim SackTypeID As String = item.GetDataKeyValue("SackTypeID").ToString()
 
        If CType(item("uxSelected").FindControl("uxSelectedCheckbox"), System.Web.UI.WebControls.CheckBox).Checked Then
            idString += SackTypeID + "!"
            If ConvertRGBToHTMLColour(CType(item("uxSackColourRcGcBc").FindControl("uxSackColourRcGcBcTextbox"), RadTextBox).Text) <> "" Then
                colourString += CType(item("uxSackColourRcGcBc").FindControl("uxSackColourRcGcBcTextbox"), RadTextBox).Text
            End If
            colourString += "!"
        End If
    Next
Catch ex As Exception
End Try


Any suggestions on what I'm doing wrong or if it can't be done like this.  If not I suppose that I can knock up some client side javascript to handle it but would prefer not to.  I've seen other examples and they seem to indicate that this should work..

Best Regards,

Jon
Jon
Top achievements
Rank 1
 answered on 06 Jul 2011
2 answers
71 views

We have a old application where it uses Telerik 2009 version where it contains a dll for each control such as Radwindow.
In 2009 version if we need to use Radwindow we register something like this

 

<%

@ Register Assembly="RadWindow.Net2" Namespace="Telerik.WebControls" TagPrefix="rad" %>

 

and use the same like

 

 

<

 

rad:RadWindowManager ID="RadWindowManager1" runat="server">

 

 

 


Now we have 2010 version where we have a license.  How to upgrade these files. If we just replace them with our new version will it work?
But in the new version we have only one dll but in the older version we have a single dll for each control.
Please help.

Georgi Tunev
Telerik team
 answered on 06 Jul 2011
3 answers
151 views
I've got a radgrid using a modal popup edit form to edit the records. I'd like to be able to link to this page, and be able to open a specific record in edit mode (perhaps passing the id for the record in the query string).

I've found other threads mentioning doing this for the add/insert scenario. For example: http://www.telerik.com/community/forums/aspnet-ajax/grid/radgrid-open-popup-add-form-on-page-load.aspx

But I want to do this for an edit/update existing record scenario.

Thanks!
-Steve
Genti
Telerik team
 answered on 06 Jul 2011
3 answers
248 views
Hi ,
  In My Rad Scheduler i used Reminder , DataSubjectField, DataDescribtion Field , DataRecurrenceField , Up to here all are works Fine. Now i want to add the one new textbox For Location. How to add this text box with Defalut add form. I dont want to go with Advanced Insert Template , If i Use that Could i need to change All fields into custome mode.

Can you please Suggest me to need with Default Form Mode..
Veronica
Telerik team
 answered on 06 Jul 2011
1 answer
86 views
Hi there,

I have a page where i make some calls via javascript ajaxRequest (ex. <%= RadAjaxManager1.ClientID %>.ajaxRequest('Move'); )

I also have a URL rewrite module as a http module. Whenever something causes a post back, the rewrite module gets called : 

protected virtual void Rewriter_AuthorizeRequest(object sender, EventArgs e)
{
        HttpApplication app = (HttpApplication)sender;
 
        absolutePath =  app.Request.Url.AbsolutePath;
 
       ........
       ........
       ........

The absolute path always contains the called page.

Now the problem is that whenever I am calling the "ajaxRequest" through java (skipping the post back), the authorize request method in the rewrite module is called WITHOUT a page set (just the folder). This obviously gives a 404 and thus, the AjaxRequest method in the back-end is never called. 

Does anyone know why this is happening? Any work arounds?

Thanks In advance!
Maria Ilieva
Telerik team
 answered on 06 Jul 2011
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?