Wiki

Articles tagged with "autocomplete"X
Displaying 1-7 of 7 result(s).

PHPStorm & NetBeans autocomplete problem

Created 3 months ago by StagelineTips0 comments – viewed 3,015 times – ( +16 )
The problem: If you type Yii::app()->user<ctrl+space> code completion didn't work. This solve it.

Simple way to use AutoComplete using different ID and Display Value

Created 9 months ago by raheelk2kTutorials1 comment – viewed 9,290 times – ( +3 )
Usually when we use AutoComplete in a project, We need to show "title" or "name" in the list, while when the form is posted, we need some sort of integer ID referring to the selected value. Out of the Box, CJuiAutoComplete widget doesn't provides different display text and post values.

Adding Bash Command Completion for Yii Commands

Created 11 months ago by Dustin OpreaHow-tos0 comments – viewed 4,004 times – ( +1 )
This article discusses the installation/configuration of the YiiBash project (https://github.com/dsoprea/YiiBash).

History Autocomplete

Created about a year ago by zaccariaHow-tos2 comments – viewed 5,495 times – ( +3 )
In application development we often have to choose how to mange recurrent values.
tags: autocomplete

Autocomplete in console command

Created about a year ago by StammTutorials1 comment – viewed 5,318 times – ( +3 )
Missed of autocomplete in bash console commands yii make me sad.

Custom Autocomplete Display and Value Submission

Created about a year ago by Antonio RamirezHow-tos5 comments – viewed 21,516 times – ( +12 / -1 )
How many of us has wondered how to create an autocomplete that will display the names of a related models but do require the id of that selected name to be submitted for model creation/update?

A simple action for CJuiAutoComplete

Created 2 years ago by tydeas_drTips7 comments – viewed 17,863 times – ( +14 / -1 )
More or less I use auto-complete field for a form. CJuiAutoComplete is a yii widget for this purposes. The common use case is to make an ajax request and retrieve a list from the database. So in this case you have to write a controller action to return you a json encoded list. What if I had a generic action to do this work for me?