Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
58 views
Hi,

Just wanted to know does the rotator also support ipad sliding.

Thanks,
Mahesh
Slav
Telerik team
 answered on 12 Apr 2012
1 answer
74 views
Hi,
I am trying to do live updation based the following demo.
https://demos.telerik.com/aspnet-ajax/rotator/examples/livexml/defaultcs.aspx.But after updating the xml how the radrotator showing the updated value?.I am getting the updated value.How it is possible?

Slav
Telerik team
 answered on 12 Apr 2012
1 answer
60 views
Hi,
    I have created a RadDockZone dynamically and placed inside a PlaceHolder. then i draged a RadDock into it. But the problem is when I saved the state of RadDock, DockZoneId getting null. how to get the Id of Dynamically created RadDockZone when saving the state of RadDockZone. Please Help
Thanks in Advance
Jesmon Joseph
Slav
Telerik team
 answered on 12 Apr 2012
7 answers
321 views
Hi I'm trying to use a ASP.NET RadGrid in my MVC project.  I followed the documentation to get the RadGrid to display data in my view, but I'd like to be able to use the drag and drop features.  How is the best way to implement it in MVC?  Sorry if this is a repeat question, I did search both the RadGrid and MVC grid forums but couldn't find anything that was what I was looking for.  Any help would be greatly appreciated.  Thanks!
Sri
Top achievements
Rank 1
 answered on 12 Apr 2012
1 answer
140 views
Hey,

Just out of curiosity, MVVM tools like Knockout - does Telerik controls work well with these types of frameworks?  Have you done any evaluation of this?

Thanks.
Slav
Telerik team
 answered on 12 Apr 2012
1 answer
106 views
Hi,
 In rare cases, the value in an asp.TextBox validated by the RadinputManager as a Numeric Field, is showing commas on the Server Side...

On My Master Page I have:

<telerik:RadInputManager ID="SharedInputManager" runat="server">
              
             <telerik:NumericTextBoxSetting DecimalDigits="0" BehaviorID="NoCSSNumber" InitializeOnClient="false" ReadOnlyCssClass="ReadOnlyStyleInputManager" Validation-ValidateOnEvent="Blur">
            </telerik:NumericTextBoxSetting>
  
<telerik:NumericTextBoxSetting DecimalDigits="0" BehaviorID="Number" InitializeOnClient="false" ReadOnlyCssClass="RIM_ReadOnly" EnabledCssClass="RIM_Width" FocusedCssClass="RIM_Width" HoveredCssClass="RIM_Width" InvalidCssClass="RIM_Width" Validation-ValidateOnEvent="Blur">
            </telerik:NumericTextBoxSetting>
 </telerik:RadInputManager>

//CSS is in external css file
.RIM_ReadOnly

{

 

 

background-color:#DEDEDE !important;

 

 

 

border-style:groove !important;

 

 

 

width:196px !important;

 

}

.RIM_Width

{

 

 

width:196px !important;

 

}


Then in the code-behind I set:

((NumericTextBoxSetting)SharedInputManager.GetSettingByBehaviorID("NoCSSNumber")).TargetControls.Add(new TargetInput(tbMyTextBox.UniqueID, true)); 
    
((NumericTextBoxSetting)SharedInputManager.GetSettingByBehaviorID("Number")).TargetControls.Add(new TargetInput(tbMyTextBox2.UniqueID, true));

Now, in rare cases, and only when i use the "NoCSSNumber" the textbox value server side will contain commas.
Example, on the user side, the text for tbMyTextBox is 1,000 and the text for tbMyTextBox2 is 1,000.
Then on the server side sometimes tbMyTextBox.Text is "1,000", but most of the time it is "1000". tbMyTextBox2 is ALWAYS "1000"

Why the discrepancy? What is the expected behavior? I expect it to always be "1000" on server side. And for most of my users the server-side value is 1000, but everyonce in a while it will make it to the server as 1,000 and throw an error...

Any help is appreciated.

Thanks

Andrey
Telerik team
 answered on 12 Apr 2012
0 answers
65 views
In my asp.net solution i am trying to use Listbox drag and drop capabilyties (like in this example : http://demos.telerik.com/aspnet-ajax/listbox/examples/functionality/draganddrop/defaultcs.aspx). But the problem ive got now is that drag and drop doesnt work. instead of draging its marking items... i tryed to copy html directly to my page and it still doesnt work. any ideas what can be wrong?
Timothi
Top achievements
Rank 1
 asked on 12 Apr 2012
2 answers
132 views

I have a couple of dropdownlists on my forTemplate but the fucntionality I need is the following.  On Insert I need them to be avialable to pick data, but on Edit mode I want to disable them so that they cannot mess with them becuase they are not editable in edit mode.  i thought the follwoing code would work but appears not.  On insert mode or what i thought was insertmode it fills the ddl and it works for soem reason, but on edit or insert it disables my dropwdownlists. 

Protected Sub myPOGrid_ItemDataBound(sender As Object, e As Telerik.Web.UI.GridItemEventArgs) Handles myPOGrid.ItemDataBound
       If (TypeOf e.Item Is IGridInsertItem AndAlso e.Item.IsDataBound) Then
           Dim gr As DropDownList = DirectCast(e.Item.FindControl("ddlPOFund"), DropDownList)
           sql = "Select intFundID, strPGMCDnum + ' \ ' + CASE WHEN intSourceId = 1 then 'FEDERAL' ELSE 'STATE' END + ' \ ' + strEorNum FUND from Drat_fundSource where bitArchive IS NULL"
           gr.Items.Add(New ListItem("Pick Funding Source", "0"))
           buildDD(sql, gr)
       End If
       If (TypeOf e.Item Is GridEditableItem AndAlso e.Item.IsInEditMode) Then
           Dim editedItem As GridEditableItem = DirectCast(e.Item, GridEditableItem)
           Dim PoFund As DropDownList = DirectCast(editedItem.FindControl("ddlPOFund"), DropDownList)
           Dim FundS As DropDownList = DirectCast(editedItem.FindControl("ddlFundSource"), DropDownList)
           PoFund.Enabled = False
           FundS.Enabled = False
       End If
   End Sub
Kevin
Top achievements
Rank 1
 answered on 12 Apr 2012
1 answer
195 views
We have a timer event that asks to extend the session using a radconfirm dialog. However, it's possible that some other event may have caused a radconfirm to be currently displayed. We've had difficulty getting the two to not overlap (e.g. the title bar message gets changed for the wrong one, content gets mixed). So, the approach we are currently trying to pursue is to force a close of the previously displayed dialog before displaying the next one.

It would be nice if radconfirm returned a handle to the dialog then all we would need to do is:
var dlg=radconfirm(...);
....
dlg.close();

But, no such luck. Is there some jScript selector we can use to get the dialog?

More detail:
The basic html layout we are using is:
<ConfirmTemplate>
	<div id="dlg1" style="display:none">
		Dialog content
	</div>
	<div id="dlg2" style="display:none">
		Dialog content
	</div>
</
ConfirmTemplate>

Where just before the call to radconfirm we set the display to the appropriate dialog.
Marin Bratanov
Telerik team
 answered on 12 Apr 2012
17 answers
383 views
Hi, i've successfully created tests in webui studio that i have exported to vs2010, and can see the test in the solution, however trying to create a load test, in vs, it does not see the .aii file as a suitable test to run.  Therefore i can create the load test framework, but cannot add any webui tests into it, is this possible or not?

Kind Regards

David
Kate
Telerik team
 answered on 12 Apr 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
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
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
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?