|
@@ -212,6 +212,16 @@ let mobContObj = {
|
212
|
212
|
$li.find('#ITP_FORM_MORDMNG02010_VIEW_EXPRY_DATE').datepicker('setDate', item.expryDate);
|
213
|
213
|
_this.rows.push(item);
|
214
|
214
|
});
|
|
215
|
+ $("#ITP_AJAX_MORDMNG02010_VIEW_CONTAINER .input-key").each(function() {
|
|
216
|
+ $(this).focus(function() {
|
|
217
|
+ console.log("focus start")
|
|
218
|
+ if(CommonObj.isApp) $("#ITP_FORM_MORDMNG02010_VIEW .content_fix").hide();
|
|
219
|
+ })
|
|
220
|
+ $(this).blur(function(){
|
|
221
|
+ console.log("focus end")
|
|
222
|
+ if(CommonObj.isApp) $("#ITP_FORM_MORDMNG02010_VIEW .content_fix").show();
|
|
223
|
+ })
|
|
224
|
+ });
|
215
|
225
|
},
|
216
|
226
|
add: function() {
|
217
|
227
|
var _this = this;
|