I am having issues laying out a basic layout using RadDock. I am using the RadDock Advanced Layout Designer to layout the Tools window.
See the attachment, when the user resizes the form, I would like to have the Tool Window fill to the right, how can I dock the Tool Window to dock appropriately? What I don't understand is that if I use the Document Window Option, it works but not for the tool option.
Hi,
I have a groupped gridview with summary row that calculate subtotal of each groups
and one grand Total at end of Grid (after set : gridview1.MasterTemplate.ShowTotals = true)
But In my senario I need one summery row for each groups and three grand Total at end.
Is it possible?
Thanks
Private
Sub
AddAutoCompleteItems()
Me
.RadTextBoxControl1.AutoCompleteMode = AutoCompleteMode.Suggest
Dim
resultgoogle
As
RadListDataItemCollection = RadTextBoxControl1.AutoCompleteItems
Dim
value
As
String
= RadTextBoxControl1.Text
Dim
url
As
String
=
"https://maps.googleapis.com/maps/api/place/autocomplete/json?input="
& value &
"&types=establishment&language=fr&key=YOURAPIKEY"
Dim
request
As
WebRequest = WebRequest.Create(url)
Dim
response
As
HttpWebResponse = request.GetResponse()
Dim
responseStream
As
Stream = response.GetResponseStream()
Dim
reader
As
New
StreamReader(responseStream)
Dim
jsonData
As
String
= reader.ReadToEnd()
Dim
jResults
As
JObject = JObject.Parse(jsonData)
Dim
data
As
List(Of JToken) = jResults.Children().ToList
reader.Close()
For
Each
item
As
JProperty
In
data
item.CreateReader()
Select
Case
item.Name
Case
"predictions"
For
Each
msg
As
JObject
In
item.Values
If
resultgoogle.Contains(msg(
"description"
))
Then
'nothing
Else
resultgoogle.Add(
New
RadListDataItem(msg(
"description"
)))
End
If
Next
End
Select
Next
If
RadTextBoxControl1.Text =
""
Then
resultgoogle.Clear()
End
If
End
Sub
Private
Sub
RadTextBoxControl1_TextChanged(sender
As
Object
, e
As
EventArgs)
Handles
RadTextBoxControl1.TextChanged
AddAutoCompleteItems()
End
Sub
If you have a more efficient solution to limit requests on the google API, do not hesitate to share.
JC
Hello, I'm using a RadListControl on a touchscreen and the EnableKineticScrolling = True so the user can scroll by touch. I couldn't find a way to remove/hide the vertical scrollbar of the control. How can I do that?
Using Telerik for Winforms 2013.3.1328.40.
On RadTextBox,
I can't get the rounded edges with the Breeze theme
Is there an event for clicking a chart label Item