Telerik Forums
KendoReact Forum
1 answer
225 views

Hello,

  I try remember column width if user changed column size and recover if return to page back. OnColumnResize event is fine, but if user change expand column (index 0), I am not able to recover width of column "expanded" (which is autogenerated ...) ?

  Thank you Pavel

 

Stefan
Telerik team
 answered on 25 Feb 2019
4 answers
1.1K+ views

i have a kendoreact dialog and inside this i put a dropdownlist but this don“t display the items.

my code is:

<Dialog title={"Detalle Asiento"} width="500px" onClose={this.cerrarDialogo} persist="true">
<form className="k-form">
<fieldset>
<tr>
<td className="col-xs-1">
<label className="k-form-field">
<div className="lbl1">Cuenta</div>
    <DropDownList data={cmbCuentas} dataItemKey="id" textField="Descripcion" />  </label>
</td>
</tr>
</fieldset>
</form>

 

 

 

 

julio
Top achievements
Rank 1
 answered on 21 Feb 2019
3 answers
625 views
Hi, Could you please provide me with simple example how to use KendoReact Inputs in Formik form?
Stefan
Telerik team
 answered on 21 Feb 2019
8 answers
1.3K+ views

Hey, 
I am not sure if this is the right spot to post, but I am implementing KendoReact. When scrolling through a grid horizontally, I am able to unintentionally sticky the scroll bar to the grid. I captured a video of me doing it on the Kendo UI for JQuery grid as well. It seems like the scrollbar can be unset by scrolling vertically, but in my case there is no vertical scroll. I'm not great with working on scrollbars, so I was wondering if anyone had any idea. Video attached below. 

Thanks

Stefan
Telerik team
 answered on 20 Feb 2019
2 answers
135 views

For a project I'm working on I would like to be able to use the ChartNavigator avaliable in the StockChart in a standard line chart, is this possible and if so how would I go about it?

 

Thanks,

Kieran


Stefan
Telerik team
 answered on 20 Feb 2019
3 answers
522 views

On going to build my grid (which works fine when viewing on workbench) I get the following

NonErrorEmittedError: (Emitted value instead of an instance of Error) Cannot find source file '../../../src/Localization/main.ts': Error: Can't resolve '../../../src/Localization/main.ts' in 'C:/dev2019/WebParts/GraphGrid/node_modules/@progress/kendo-react-intl/dist/es/Localization'
    at emitWarning (C:/dev2019/WebParts/GraphGrid/node_modules/webpack/lib/NormalModule.js:117:16)
    at C:/dev2019/WebParts/GraphGrid/node_modules/source-map-loader/index.js:80:7
    at onError (C:/dev2019/WebParts/GraphGrid/node_modules/enhanced-resolve/lib/Resolver.js:65:10)
    at loggingCallbackWrapper (C:/dev2019/WebParts/GraphGrid/node_modules/enhanced-resolve/lib/createInnerCallback.js:31:19)
    at runAfter (C:/dev2019/WebParts/GraphGrid/node_modules/enhanced-resolve/lib/Resolver.js:158:4)
    at innerCallback (C:/dev2019/WebParts/GraphGrid/node_modules/enhanced-resolve/lib/Resolver.js:146:3)
    at loggingCallbackWrapper (C:/dev2019/WebParts/GraphGrid/node_modules/enhanced-resolve/lib/createInnerCallback.js:31:19)
    at next (C:/dev2019/WebParts/GraphGrid/node_modules/tapable/lib/Tapable.js:252:11)
    at C:/dev2019/WebParts/GraphGrid/node_modules/enhanced-resolve/lib/UnsafeCachePlugin.js:40:4
    at loggingCallbackWrapper (C:/dev2019/WebParts/GraphGrid/node_modules/enhanced-resolve/lib/createInnerCallback.js:31:19)
@ ./node_modules/@progress/kendo-react-intl/dist/es/main.js 2:0-36
@ ./node_modules/@progress/kendo-react-grid/dist/es/GridNoRecords.js
@ ./node_modules/@progress/kendo-react-grid/dist/es/main.js

 

After looking around on the git issues I came across

https://github.com/telerik/kendo-react/issues/126

which seemed to be my issue.

So I followed this

https://docs.microsoft.com/en-us/sharepoint/dev/spfx/toolchain/extending-webpack-in-build-pipeline

so I could edit the configure webpack.

so my Gulpfile.js looks like

build.configureWebpack.mergeConfig({
    additionalConfiguration: (generatedConfiguration) => {
      generatedConfiguration.module.rules.push(
        {
            enforce: 'pre',
        test: /\.js$/,
        loader: "source-map-loader",
        exclude: [
             /\/node_modules\//        
          ]
          
        }
      );
   
      return generatedConfiguration;
    }
  });

 

But I still get all of my errors

 

Please can anyone give some help on this.

Stefan
Telerik team
 answered on 19 Feb 2019
1 answer
207 views

Hi,

 

I have implemented auto complete control inside the grid. I am facing issue when I tries to remove record using backspace.

 

For example 

I Selected the record from Autocomplete, now I am pressing backspace. As soon as I press backspace, call goes to method and it updates the state, Which causes focus to the lost. Is there any way to retained a focus?

 

Regards,

Parag

 

Stefan
Telerik team
 answered on 19 Feb 2019
3 answers
66 views

Hi,

     1) Is there any property available in grid to show and hide entire grid?

     2) Is there any way to dynamically add column in grid? For example : I want to provide pop up box where will provide column list apart from the column which exist in the grid and on selection of those column, it should directly get added in grid.

 

Regards,

Parag

 

Stefan
Telerik team
 answered on 19 Feb 2019
3 answers
402 views

Hello,

I would like to use the Window Kendo React component: https://www.telerik.com/kendo-react-ui/components/dialogs/window/.But i noticed that I cannot enter any text in input fields ?

Am I missing something ?

Best regards,

Jean-Pierre

Stefan
Telerik team
 answered on 19 Feb 2019
2 answers
569 views

In a current scenario we were working through where we have a groupable / sortable grid that allows inline editing, we wanted to be able to keep the currently selected row in focus even after the user might have changed a value that effects the groupable / sortable criteria, thus causing a re-positioning of the row.  The current documented examples provided an option for looping through the data to set/unset a selection tag, but this seems problematic with the way grouping changes the data into a hierarchical structure (we do not force a grouping so sometimes the data will be flat). 

Two things would have helped our situation since we are only allowing one row to be selected at a time:  either a setting on the grid that only allowed for single row selections (and so thus we wouldn't have to loop the data to un-set the flag for all rows manually), or a clearSelection method that would automatically clear the flag for all rows.  In both of those examples we would only have to deal with setting the current row's selection flag.  In addition, both of those types of functionality are available with other Kendo technologies (e.g. jQuery)

 

Did I overthink this issue and there is actually a better way of solving this issue?

Stefan
Telerik team
 answered on 18 Feb 2019
Narrow your results
Selected tags
Tags
General Discussions
Grid
Wrappers for React
Charts
Scheduler
Filter 
DropDownList
Form
DatePicker
Styling / Themes
Editor
TreeList
Styling
PDF Processing
ComboBox
Excel Export
Dialog
Input
TreeView
Upload
Drawer
Button
Drag and Drop
MultiSelect
Tooltip
Accessibility
NumericTextBox
Checkbox
Menu
Gantt
DateTimePicker
PDF Viewer
Popup
Window
AutoComplete
DateInput
Sortable
Data Query
Licensing
TabStrip
Drawing
Calendar
Pager 
Labels 
Localization
TimePicker
GridLayout
FontIcon
Animation
PanelBar
TaskBoard
PivotGrid
Card
DropDownButton
Conversational UI 
DateRangePicker
Splitter
Badge 
Security
Slider
Spreadsheet
ContextMenu
MultiViewCalendar
Stepper
MultiColumnComboBox
MultiSelectTree
TextBox
AppBar
File Saver
ListView
MaskedTextBox
RadioButton
Switch
TextArea
Toolbar
DropDownTree
TileLayout
Map
Avatar
Date Math
Gauge
RadioGroup
RangeSlider
Rating
Loader
ExpansionPanel
SvgIcon
Typography
ProgressBar
ScrollView
Popover
StockChart
RadialGauge
Server Components
AIPrompt
Page Templates / Building Blocks
AI Coding Assistant
Chat
ColorGradient
ColorPalette
ColorPicker
Notification
Ripple
Skeleton
ButtonGroup
Chip
ChipList
FloatingActionButton
SplitButton
ActionSheet
Barcode
QR Code
FlatColorPicker
Signature
BottomNavigation
BreadCrumb
StackLayout
Timeline
ListBox
ChunkProgressBar
Sparkline
FileManager
ArcGauge
CircularGauge
LinearGauge
ExternalDropZone
OrgChart
Sankey
VS Code Extension
InlineAIPrompt
SpeechToTextButton
Chart Wizard
Agentic UI Generator
SmartPasteButton
PromptBox
SegmentedControl
LLM Kit
OTP Input
+? 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?