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

I'd had a problem that I talked any people to try to help me but it's not solved it.

I'd like to know if is it possible to show item of combobox above in combobox? Normally, We see the item of combobox show in a box that is down of combobox. I'd like to show this items above of combobox.

Is it possible to do it in this component?

Could Anybody try to help me, please?

Thanks to all attention,

Carlos,
Schlurk
Top achievements
Rank 2
 answered on 11 Dec 2009
2 answers
77 views
I have a situation where I have a radwindow that pops up with a map. I get the lat/long where the client places a pin. I want to then close the window and place the lat/long in the lat and the long fields in the update or insert form on the grid. I hope this makes sense. Im not sure how to reference those controls outside of a insert or update event.
Ed Navickas
Top achievements
Rank 1
 answered on 11 Dec 2009
4 answers
136 views

Hi friends ,

 I Have one page (Index.aspx) , and put one ajaxmanager  in this page …   I use ajaxmanager  for handle 2 clientside event  1- OnrequestStart  2- OnResponseEnd   .

Also I have one UserControl  in Index.aspx … in this UC  I have 2 Button and when I click one of them , I want to fire OnRequestStart  and get element (get_eventTargetElement) that make ajax request in UC  …

How can I do it ?!

Plz help me 

 

Thank u very much .

Regards,

peyman

peyman naji
Top achievements
Rank 1
 answered on 11 Dec 2009
1 answer
103 views
Hello,

My users need additional fields on the Radupload control. So following your examples I have added two radio button/group to the form, so the user can select one option or the other, but not both.  I have it workin on my local dev machine IE 8.0 but when moved to a test server, the user using IE 7, cannot select the radio buttons, and on the post back to save the documents, I cannot access the additional field. When I access the test site with my browser (IE 8) it works fine!

here is the Javascript I am using to add the additional fields,
<script language="javascript" type="text/javascript">  
<!--  
var numberOfCustomFields = 0;  
function OnClientAddedHandler(sender, eventArgs)  
{  
  var inputRow = eventArgs.get_row();  
  var uList = inputRow.parentNode;  
  var count = numberOfCustomFields;  
      
  //new row for a User Manual Category check box  
  newRow = document.createElement("li");  
  count++;  
  uList.insertBefore(newRow, inputRow);  
  var label = document.createElement("span");  
  label.innerHTML = "Manuals/Add. info";  
  label.style.fontSize = 12;  
  input = document.createElement("input");  
  input.type = "radio";  
  input.value = "Manual";  
  input.checked = "true";  
  input.name = "group" + count;  
  inputinput.id = input.name = sender.getID(input.name);  
  newRow.appendChild(input);  
  newRow.appendChild(label);  
    
  //new row for a Cut-Sheets Category check box  
  newRow = document.createElement("li");  
  //count++;  
  uList.insertBefore(newRow, inputRow);  
  var label = document.createElement("span");  
  label.innerHTML = "FFE Cut Sheet";  
  label.style.fontSize = 12;  
  input = document.createElement("input");  
  input.type = "radio";  
  input.value = "Cutsheet";  
  input.name = "group"+ count;  
  inputinput.id = input.name = sender.getID(input.name);  
  newRow.appendChild(input);  
  newRow.appendChild(label);  
   
  // Set the number of fields from the count    
  numberOfCustomFields = count;  
}  
function OnClientDeletingHandler(sender, eventArgs)  
{  
   var input = eventArgs.get_fileInputField();  
   deleteCustomFields(input);  
}  
function OnClientDeletingSelectedHandler(sender, eventArgs)  
{  
  var inputs = eventArgs.get_fileInputFields();  
    
  for (i = 0; i < inputs.length; i++)  
  {  
    deleteCustomFields(inputs[i]);       
  }  
  eventArgs.set_cancel(true);  
}  
function deleteCustomFields(input)  
{  
   var li = input.parentNode.parentNode;  
   var ul = input.parentNode.parentNode.parentNode;  
     
   for (var i = 0; i < numberOfCustomFields; i++)  
   {     
       ul.removeChild(li.previousSibling);          
   }      
   ul.removeChild(li);  
}  
 
// --> 
</script> 

Genady Sergeev
Telerik team
 answered on 11 Dec 2009
13 answers
348 views
Hello there again,

In our rad tree node we added an asp.net button control, but whenever we click the button, it's buttonclick event does not fired but instead the nodeclick event is fired.

Maybe you can help me also in this one.

Hope to hear from you soon.

Thank you.

Greetings,

~cLyde~

^_^
Ed
Top achievements
Rank 1
 answered on 11 Dec 2009
5 answers
146 views
Hello,
We are migrating from the telrik Q1 2008(Telerik.web.ui.dll version - 2008.1.619.20) version to Q3 2009 version.
If I set

PagerStyle-Mode

 

="NextPrevAndNumeric"

 

than i am getting below mentioned error
Script control 'PageSizeComboBox' is not a registered script control. Script controls must be registered using RegisterScriptControl() before calling RegisterScriptDescriptors().
Parameter name: scriptContro

If I set PagerStyle-Mode="NextPrevNumericAndAdvanced" or "Advanced"
Script control 'GoToPageTextBox' is not a registered script control. Script controls must be registered using RegisterScriptControl() before calling RegisterScriptDescriptors().
Parameter name: scriptControl


If I set  PagerStyle-Mode="Slider"
Script control 'GridSliderPager' is not a registered script control. Script controls must be registered using RegisterScriptControl() before calling RegisterScriptDescriptors().
Parameter name: scriptControl


Thanks in advance


Regards

Raj
Pavlina
Telerik team
 answered on 11 Dec 2009
2 answers
137 views
My company has approved an HTML/CSS prototype/script.aculo.us design for a navigation menu but now we have a technical requirement to convert this menu to a Telerik RAD menu. Since the design has already been approved, we need this menu to work & look like the the prototype/script.aculo.us version.

The example of the approved menu is here:
http://beta.lpsdefault.com/mockup/120709/notabs2.html

The inconsistencies I've been unable to overcome (thus far) in converting this menu to Telerik are
With the Horizontial to tier of the menu (Tasks/Special/Reports):
  •        Cannot accuratley recreate the slanted background separator images and hover images.
With the submenus (Tier 1 & 2):
  •        implementing the Graphic backgrounds with partial opacity but with 100% opacity on the graphic borders
  •        Absolute positioning these divs rather than them falling dynamically under the level above.
  •        Fixed width / height of these divs
  •        Vertical scrolling with browser scroll bar as seen under reports & reports/closing management options

Right now I'm trying to create a custom skin, using the Web20 skin as a starting point. With the static example above, I had access to define the styles and write the output code calling those styles. With Telerik, I only have access to the stylesheet and not the output code.

Can someone help me address these inconsistencies and get this menu working and looking the same way within the telerik structure?

Thanks.
Matt Pilgrim
Top achievements
Rank 1
 answered on 11 Dec 2009
1 answer
120 views
I want to be able to insert and delete records from a grid but wish not to allow an existing record to be edited.  Is there a way to hide the Edit command link, but still have the Save and Cancel available for insert?
Schlurk
Top achievements
Rank 2
 answered on 11 Dec 2009
1 answer
76 views
For Entering the Data in Radeditor its starting from the middle how can i set the align to left from middle
Rumen
Telerik team
 answered on 11 Dec 2009
2 answers
172 views
Hi,

  I am using image manager to upload and insert image to editor.Server path is displaying in textbox that under the menus..i would like to hide the textbox(path) .i don't want the users  to see the server files in the image manager

Can you tell me the solution?

Thanks for any help

Rumen
Telerik team
 answered on 11 Dec 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?