Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
112 views
Is it possible to manipulate 'MultipleFileSelection' property of AsyncUpload control client side? I want to toggle the fileselection functionality of AyncUpload control client side from 'Automatic' to 'Disabled'
Princy
Top achievements
Rank 2
 answered on 16 Apr 2013
1 answer
115 views
Hi, im using C# and linq

I have to store the values of the selected items from my RadComboBoxes into a database.

I have a form with 15+ comboBoxes which get populated from the database on_load, i also have a "Save" button that should be saving  selectedValues of those boxes into another database. When i enter the "Click" event for my "Save" button i do not have access to any of the comboBox objects.
And when i say i do not have access to the object,i have a Box with the ID="cboAccount", i cannot call cboAccount.SelectedValue for example.

So i tried the following just to check if i could get access to the selected values
RadComboBox oops = new RadComboBox();
 
oops.ID = "cboAccount";
 
Response.Write("<script language='javascript'>alert('" + Server.HtmlEncode(oops.SelectedValue) + "')</script>");

but once the message displays the message is blank.

I already know how to insert data into a database with linq i just need to know how can i access the actual ComboBox Objects and the selected values so i can insert the data into the database.

thanx

Shinu
Top achievements
Rank 2
 answered on 16 Apr 2013
2 answers
119 views
Hello and Thank you for your help in advance,

I am facing an issue where I have two rad windows, and each rad window contains a radcombobox.
These rad windows are opened on the client and are basically just two small forms.
There are submit buttons in each rad window which provide a post back and a stored procedure call.
The problem I am seeing is that it takes a page refresh from browser two these the results in either radcombobox - even though I have autopostback (they are set as default) set to true on both submit buttons.  Each stored procedure affects the other combo box data.
The rad windows are on the same page - and not on different pages.  I would like to keep it this way - is there any way that this result could be achieved?
Peter Filipov
Telerik team
 answered on 16 Apr 2013
1 answer
415 views
Hello,

I've the following code to bind:

var lstEmployees = employeeRepository.All.Select(employee => new { employee.Id, employee.Name });

txtEmployee.DataSource = lstEmployees.ToList();

txtEmployee.DataTextField = "Name";

txtEmployee.DataValueField = "Id";

txtEmployee.DataBind();

This code is called in the Page_Load() event inside the

if (!IsPostBack) block.

This triggers the error "The Control DataSource or (DataSourceID) is not set" when I start typing into it.
What I noticed is, when I move the binding code outside the if (!IsPostBack) block, it works correctly.

 

 

 

 

 

 

 

 

 

 

 

Princy
Top achievements
Rank 2
 answered on 16 Apr 2013
0 answers
86 views
Hi,

http://demos.telerik.com/aspnet-ajax/grid/examples/client/insertupdatedelete/defaultvb.aspx?#qsf-demo-source

I did the same thing, but the application does not work. I received the error: Microsoft JScript runtime error: 'MyWebServices' is undefined. I would ask for your help.
Thanks.
Tugba
Top achievements
Rank 1
 asked on 16 Apr 2013
6 answers
220 views
Hi,

we are using SignalR v 1.xx. And sometimes some errors bubble up in connection to Radcompression .

There are others with the same problem:
https://github.com/SignalR/SignalR/issues/1535

Fehlermeldung und Stack-Trace

Fehlermeldung: Microsoft.Owin.Host.SystemWeb: One or more errors occurred.

Stack-Trace: Server stack trace: Exception rethrown at [0]: bei Microsoft.Owin.Host.SystemWeb.Utils.<>c__DisplayClass1.

Is this a known problem?

Best 

Nils
Radoslav
Telerik team
 answered on 16 Apr 2013
1 answer
100 views
Hello,
 We want to implement the "Your Bookmarks" feature that happens when you click the Logged In User Icon.  Is that a RadControl of some sort?  Where is it located?

Thanks
Jayesh Goyani
Top achievements
Rank 2
 answered on 16 Apr 2013
5 answers
461 views
I have the following problem.

When a number in the grid is formatted in the format used in France (10 123 in stead of 10.123) and when i export to excel, excel does not see this as a number, because of the space.

Is there a way that it will always be exported as 10123, so without any formatting?
Shinu
Top achievements
Rank 2
 answered on 16 Apr 2013
1 answer
612 views
Hi,

When I tried to export data to excel, I'm unable to get date format. My date format is based upon my session settings. Date is displayed in grid as 10.01.2013 12.25.44. I want the same should be exported in excel. I'm using below code
protected void RadGrid1_ExcelMLExportStylesCreated(object source, GridExportExcelMLStyleCreatedArgs e)
        {
            StyleElement dateStyle = new StyleElement("Date");
            dateStyle.NumberFormat.FormatType = NumberFormatType.Fixed;
            dateStyle.NumberFormat.Attributes["ss:Format"] = "d";
            e.Styles.Add(dateStyle); 
        }
}

Thanks,
Kumar
Shinu
Top achievements
Rank 2
 answered on 16 Apr 2013
1 answer
318 views
Hi

I'm trying to implement a clientside custom validation for my rad grid, and while I have managed to write the javascript function that gets called when the custom validator is fired, I am not sure how to access the edit form controls inside the function.

Here's a stripped down version of my markup. 
Basically the grid has a "location" column and a "Storage Location" column and I use a FormTemplate based edit form for the insert/edit.
When inserting a record, I need to validate that only one of these two is selected.

<telerik:RadGrid
  SkinID="myTemplate"
  ID="myGrid"
  runat="server"
  DataSourceID="myDataSourceID"
  OnInsertCommand="OnInserting"
  OnUpdateCommand="OnUpdating">
   
  <MasterTableView
    DataKeyNames="myDataKey">
   
    <CommandItemSettings
      AddNewRecordText="Assign Location" />
 
    <EditFormSettings
      CaptionFormatString="Edit Location"
      InsertCaption="Add New Location"
      EditFormType="Template">
 
      <FormTemplate>
        <!--   Begin Edit Item Table Template   -->
 
          <table id="Table10">
 
            <tr>
              <td>
                <des:LocalizableLabel
                  ID="Location"
                  runat="server"
                  Text="Location"></des:LocalizableLabel>
              </td>
              <td>
 
                <aec:TelerikAutoCompleteBox
                  ID="locationsAutoComplete"
                  runat="server"
                  DataSourceID="sqlLocationAutocomplete"
                  DataTextField="Name"
                  DataValueField="Location_ID"
                  Filter="Contains"
                  TextSettings-SelectionMode="Single"
                  InputType="Text">
                </aec:TelerikAutoCompleteBox>
 
              </td>
            </tr>
 
            <tr>
              <td>
                <des:LocalizableLabel
                  ID="StorageLocation"
                  runat="server"
                  Text="Storage Location"></des:LocalizableLabel>
              </td>
              <td>
                <aec:TelerikDropDown
                  runat="server"
                  DataField="Storage_Location"
                  DataTextField="Storage_Location"
                  DataValueField="Storage_Location"
                  DataSourceID="sqlStorageLocation"
                  ID="storageLocationDropDown">
                </aec:TelerikDropDown>
               
                  <asp:CustomValidator
                    runat="server"
                    ID="customValidator1"
                    ClientValidationFunction="EquipmentLocation_ClientValidate"
                    OnServerValidate="validateLocation"
                    ControlToValidate="storageLocationDropDown"
                    ErrorMessage="Must select either Location or Storage Location."
                    Display="static">
                   </asp:CustomValidator>
              </td>
            </tr>
        </table>
        <AERadGrid:EditFormSaveCancelButtons
          ID="locationAssignEditFormButtons"
          runat="Server">
        </AERadGrid:EditFormSaveCancelButtons>
        <!--   End Edit Item Table Template   -->
 
      </FormTemplate>
 
    </EditFormSettings>
 
    <Columns>
      <telerik:GridBoundColumn
        UniqueName="Location_Name"
        HeaderText="Location"
        DataField="Location_Name">
      </telerik:GridBoundColumn>
 
      <telerik:GridBoundColumn
        UniqueName="Storage_Location"
        HeaderText="Storage Location"
        DataField="Storage_Location">
      </telerik:GridBoundColumn>
 
    </Columns>
  </MasterTableView>
</telerik:RadGrid>

Here's the JS
function EquipmentLocation_ClientValidate(source, args) {
 
    //get a reference to the calling validator control
    var CustomValidator1 = source.id;
 
    /* get the values of the location auto complete and the storage location ddl and compare.*/
    var storageLocation = args.Value;
    var location = ?? //GET the value out of the autocomplete box....how?  
 
}

Now the JS function does get called as expected, in which I want to check the selected values in the autocomplete and the dropdown and allow only one to be selected. The value of the drop down is directly available in the args, but I'm not sure how I can get the value out of the autocompletebox on the edit form.

How do we get it?

Thanks
mqsash
Top achievements
Rank 1
 answered on 15 Apr 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?