Telerik Forums
Kendo UI for jQuery Forum
6 answers
166 views
Hi,

I use locked columns and batch editing.

When the locked column has only one row of text and a not locked column has more than one row of text and I edit a field in this row, the height of the locked column collapse aus you can see in the pictures...

How can we fix the problem?

My company wants to buy the Framework but this schould work...

Best reguards,
Kevin
Nikolay Rusev
Telerik team
 answered on 24 Jul 2014
2 answers
132 views
hi all, how are you? i am rather new to ASP . NET and newer to Telerik.
i just completed this tutorial: http://www.asp.net/mvc/tutorials/mvc-5/introduction/getting-started
and played around with it, made a few changes to it as i wanted. Now i want to add inline editing so that 
all the CRUD operation are done on the same table and with no page redirections ( inline ). just like this telerik example.
http://demos.telerik.com/kendo-ui/grid/editing-inline, 
i have installed telerik succesfully to visual studio. but now i dont know what edits i am supposed to make of what configurations and to which files inorder to achieve the above result. i have looked through the forums but its not stated explicitly any where. any help is greatly appreciated in advance. Thanks all :) 
Alex
Top achievements
Rank 1
 answered on 24 Jul 2014
3 answers
230 views
Hi,

I updated my Kendo from 1.416 to 2.716 (yes, I skipped the updates for a long time.).
So, I have this 100% working Kendo Upload(w/ v 1.416), after updating to v.2.716 the files are being duplicated after selecting items.
Codes are basic Kendo Upload async inside a tabstrip for  aspnet mvc(razor).
Please let me know if there are issues with Upload inside Tabstrip because my other Upload are working fine outside the Tabstrip.
Dimiter Madjarov
Telerik team
 answered on 24 Jul 2014
1 answer
114 views
Hi,

We have created a grid where each row has an inner grid.
We need to achieve the following:
Say for example the focus is on the first row of outer grid, we need to be able to navigate to the inner grid of this row using tab and/or up/down arrow keys.
Similarly, if the focus is on inner grid of a particular row, we need to be able to navigate to the outer grid or its parent row using tab and/or up/down arrow keys.
The navigatable property of both inner grids and outer grids is set to true.
Also, tried giving tab index to both the grids.
We're unable to navigate from inner grid to outer grid and vice versa using keyboard navigation.

Kindly guide us achieve the desired behavior.

Thanks,
Sandeep.

 
Petur Subev
Telerik team
 answered on 24 Jul 2014
3 answers
109 views
Why Doesn't Batch Option Seem to Work
I am trying to save events to the server. The events are saved but I noticed if I put a break point on the server action the the function is called for every event in the scheduler. The events fail when they have and id set other than zero so. 

dataSource: { 
    batch:false,
    transport.... }
jwize
Top achievements
Rank 1
 answered on 24 Jul 2014
1 answer
113 views
Hi!,

I am creating a project in AppBuilder based on Kendo UI mobile app. I am trying to customize it in such a way that the footer element of the layout is not visible when in the login page but becomes visible once logged in and navigate to other tabs. Any advise will be highly appreciated.

Regards
Alexander Valchev
Telerik team
 answered on 24 Jul 2014
1 answer
154 views
Hi,

I am trying to configure kendo GanttDataSource, but i encountered an error: custom function which i set to transport.update is never called. See example.

Thanks.
Kiril Nikolov
Telerik team
 answered on 24 Jul 2014
3 answers
241 views
Hello everybody,

I have put a partial view in a kendo accordion, the partial view contains a grid with add/edit and delete functionalists, it was working alright but after putting it in an accordion its showing some issues...

1. After adding a new record if you go to edit the same record, the grid refreshed and you have to search for the newly added record.
2. When you click the delete button the message 'Do you want to delete the record' comes twice.

Please help me I am really stuck.
Petur Subev
Telerik team
 answered on 24 Jul 2014
1 answer
327 views
Hello,

i am displaying a partialview with splitter having 2 vertical panes. upper vertical pane is non rezizable and lower has 2 horizontal panes. Left side has a treeview and right side grid. When the window Comes up sometimes the splitter loks oka nd sometimes there is a lot of gray space inbetween both vertical panes like attached Image. on resizing window sometime one pane vanishes completely.
My code goes like this and i want to fix the height of lower vertical pane and make grid and treeview use entire spaace.

@(Html.Kendo().Splitter()
.Name("vertical")
.Orientation(SplitterOrientation.Vertical)
.Panes(verticalPanes =>
{

verticalPanes.Add()
.Size("50px")
.HtmlAttributes(new { id = "bottom-pane" })
.Resizable(false)
.Collapsible(false)
.Content(@<text><div class="pane-content">Suchen:
@Html.TextBox("searchbox")<input class="k-button" id="searchBtn" type="button" value="Suchen" />
<label><input type="checkbox" id="IsNew-checkbox" checked="checked" /> Archivierte Aufträge Anzeigen</label>
</div></text>);
verticalPanes.Add()
.HtmlAttributes(new { id = "top-pane" })
.Scrollable(true)
.Collapsible(true)
.Size("550px")
.Content(
Html.Kendo().Splitter()
.Name("horizontal")
.Panes(horizontalPanes =>
{
horizontalPanes.Add()
.HtmlAttributes(new { id = "left-pane" })
.Collapsible(true)
.Content(@<text>

@(Html.Kendo().TreeView()
.Name("treeview")
.HtmlAttributes(new { @class = "demo-section" })
.DataTextField("Text")
.DataSource(dataSource => dataSource
.Read(readtree => readtree
.Action("ReadObjects", "Objekt")
)
)
)

</text>);


horizontalPanes.Add()
.HtmlAttributes(new { id = "right-pane" })
.Collapsible(true)
.Content(@<text>
@(Html.Kendo().Grid(Model)
.Name("Grid")
.DataSource(dataSource => dataSource
.Ajax()
.Model(model =>
{
if (Model != null)
{
foreach (System.Data.DataColumn column in Model.Columns)
{
model.Field(column.ColumnName, column.DataType);
}
}
})
.Read(read => read.Action("Object_Read", "Objekt").Data("addSearch"))
.ServerOperation(false)
)
.Columns(columns =>
{

for (int i = 0; i < ViewBag.ListHeader.GetLength(0); i++)
{

if (ViewBag.ListHeader[i, 1] == "ObjektID")
{
columns.Bound(ViewBag.ListHeader[i, 0]).Title(ViewBag.ListHeader[i, 1]).Visible(false);
}
else if (ViewBag.ListHeader[i, 1] == "Typ")
{
columns.Bound(ViewBag.ListHeader[i, 0]).Title(ViewBag.ListHeader[i, 1]).Visible(false);
}
else if (ViewBag.ListHeader[i, 1] == "imagePath")
{
columns.Bound(ViewBag.ListHeader[i, 0]).Title("Typ").ClientTemplate("#= AnspracheTemplate(imagePath) #");
}
else
{
columns.Bound(ViewBag.ListHeader[i, 0]).Title(ViewBag.ListHeader[i, 1]);
}
}

})
.Selectable(selectable => selectable
.Mode(GridSelectionMode.Single))

.Pageable(pageable => pageable
.PageSizes(true)
.ButtonCount(20))
)
</text>);
}).ToHtmlString()
);


})
)

<style scoped>
#example {
text-align: center;
}
.demo-section {
vertical-align: top;
width: 320px;
text-align: left;
}

#vertical
{
border-width: 0;
}
#top-pane
{
overflow: visible;
z-index: 2;
}
#middle-pane {
background-color: rgba(60, 70, 80, 0.10);
}
#bottom-pane {
background-color: rgba(60, 70, 80, 0.15);
}
#left-pane {
background-color: rgba(60, 70, 80, 0.05);
}
#center-pane {
background-color: rgba(60, 70, 80, 0.05);
}
#right-pane {
background-color: rgba(60, 70, 80, 0.05);
}

</style>
Dimo
Telerik team
 answered on 24 Jul 2014
1 answer
137 views
Hi there,

There is a problem with the formatting on DropDownLists without data when they are in a Toolbar. If there is no data, the height collapses. See this JS Bin for an example: http://jsbin.com/netamonu/1/edit.
Alexander Valchev
Telerik team
 answered on 24 Jul 2014
Narrow your results
Selected tags
Tags
Grid
General Discussions
Charts
Data Source
Scheduler
DropDownList
TreeView
MVVM
Editor
Window
DatePicker
Spreadsheet
Upload
ListView (Mobile)
ComboBox
TabStrip
MultiSelect
AutoComplete
ListView
Menu
Templates
Gantt
Validation
TreeList
Diagram
NumericTextBox
Splitter
PanelBar
Application
Drag and Drop
Map
ToolTip
Calendar
PivotGrid
ScrollView (Mobile)
Toolbar
TabStrip (Mobile)
Slider
Button (Mobile)
Filter
SPA
Drawing API
Drawer (Mobile)
Globalization
LinearGauge
Sortable
ModalView
Hierarchical Data Source
Button
FileManager
MaskedTextBox
View
Form
NavBar
Notification
Switch (Mobile)
SplitView
ListBox
DropDownTree
PDFViewer
Sparkline
ActionSheet
TileLayout
PopOver (Mobile)
TreeMap
ButtonGroup
ColorPicker
Pager
Styling
Chat
MultiColumnComboBox
Dialog
DateRangePicker
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Accessibility
Effects
PivotGridV2
Licensing
ScrollView
Switch
TextArea
BulletChart
QRCode
ResponsivePanel
Wizard
CheckBoxGroup
Localization
Barcode
Breadcrumb
Collapsible
MultiViewCalendar
Touch
RadioButton
Stepper
Card
ExpansionPanel
Rating
RadioGroup
Badge
Captcha
Heatmap
AppBar
Loader
Security
TaskBoard
Popover
DockManager
TimePicker
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
BottomNavigation
Ripple
SkeletonContainer
Avatar
Circular ProgressBar
FlatColorPicker
SplitButton
Signature
Chip
ChipList
VS Code Extension
AIPrompt
PropertyGrid
Sankey
Chart Wizard
OTP Input
SpeechToTextButton
InlineAIPrompt
StockChart
ContextMenu
DateTimePicker
RadialGauge
ArcGauge
AICodingAssistant
SmartPasteButton
PromptBox
SegmentedControl
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?